home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / link.c,v < prev    next >
Text File  |  1991-12-10  |  2KB  |  94 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.1.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     88.06.19.14.31.36;  author ouster;  state Exp;
  11. branches 1.1.1.1;
  12. next     ;
  13.  
  14. 1.1.1.1
  15. date     91.12.10.15.51.25;  author kupfer;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24.  
  25. 1.1
  26. log
  27. @Initial revision
  28. @
  29. text
  30. @/* 
  31.  * link.c --
  32.  *
  33.  *    Procedure to map from Unix link system call to Sprite.
  34.  *
  35.  * Copyright 1986 Regents of the University of California
  36.  * All rights reserved.
  37.  */
  38.  
  39. #ifndef lint
  40. static char rcsid[] = "$Header: link.c,v 1.1 87/03/23 16:32:51 douglis Exp $ SPRITE (Berkeley)";
  41. #endif not lint
  42.  
  43. #include "sprite.h"
  44. #include "fs.h"
  45.  
  46. #include "compatInt.h"
  47.  
  48.  
  49. /*
  50.  *----------------------------------------------------------------------
  51.  *
  52.  * link --
  53.  *
  54.  *    Procedure to map from Unix link system call to Sprite Fs_HardLink.
  55.  *
  56.  * Results:
  57.  *      UNIX_SUCCESS    - the call was successful.
  58.  *      UNIX_ERROR      - the call was not successful.
  59.  *                        The actual error code stored in errno.
  60.  *
  61.  * Side effects:
  62.  *    Cause the two pathnames to refer to the same file.
  63.  *
  64.  *----------------------------------------------------------------------
  65.  */
  66.  
  67. int
  68. link(name1, name2)
  69.     char *name1;
  70.     char *name2;
  71. {
  72.     ReturnStatus status;    /* result returned by Prefix_Link */
  73.  
  74.     status = Fs_HardLink(name1,name2);
  75.     if (status != SUCCESS) {
  76.     errno = Compat_MapCode(status);
  77.     return(UNIX_ERROR);
  78.     } else {
  79.     return(UNIX_SUCCESS);
  80.     }
  81. }
  82. @
  83.  
  84.  
  85. 1.1.1.1
  86. log
  87. @Initial branch for Sprite server.
  88. @
  89. text
  90. @d11 1
  91. a11 1
  92. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/link.c,v 1.1 88/06/19 14:31:36 ouster Exp $ SPRITE (Berkeley)";
  93. @
  94.